home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1996 September / JCSM Shareware Collection (JCS Distribution) (September 1996).ISO / bother__ / 10860f01.ziv / TIE22.EXE / INST_WS.BAT < prev    next >
DOS Batch File  |  1994-04-21  |  4KB  |  85 lines

  1. Echo Off
  2. REM ******************************************************
  3. REM * File   : INST_WS.bat
  4. REM * Author : Stephen Williams
  5. REM * Date   : 16 May 1993
  6. REM * Revised:
  7. REM * Purpose: Installation - TIE (Program Only)
  8. REM ******************************************************
  9. if "%1" == ""    goto help
  10. if "%1" == "?"   goto help
  11. if "%1" == "A:"  goto help
  12. if "%1" == "a:"  goto help
  13. if "%1" == "B:"  goto help
  14. if "%1" == "b:"  goto help
  15. if "%1" == "A"   goto FLOP
  16. if "%1" == "a"   goto FLOP
  17. if "%1" == "B"   goto FLOP
  18. if "%1" == "b"   goto FLOP
  19.  
  20. for %%f in (C:,c:,D:,d:,E:,e:,F:,f:,G:,g:,H:,h:,I:,i:) do if %1.==%%f. goto Help
  21. for %%f in (J:,j:,K:,k:,L:,l:,M:,m:,N:,n:,O:,o:,P:,p:) do if %1.==%%f. goto Help
  22. for %%f in (Q:,q:,R:,r:,S:,s:,T:,t:,U:,u:,V:,v:,W:,w:) do if %1.==%%f. goto Help
  23. for %%f in (X:,x:,Y:,y:,Z:,z:)                         do if %1.==%%f. goto Help
  24.  
  25. REM **************************
  26. REM HARD DISK INSTALLATION
  27. REM **************************
  28. if not exist %1:\nul goto help
  29. CLS
  30. Echo * Teamwork Information Exchange (TIE) Installation *
  31. Echo *                                                  *
  32. Echo *       Installing Program only on %1:\TIE          *
  33. Echo *                                                  *
  34. Echo \/                                                 \/
  35. TIE_EXE %1:\TIE
  36. %1:
  37. CD \TIE
  38. Echo ********** TIE Successfully Installed on %1:\TIE **************
  39. Echo ***
  40. Echo *** To run program type "TIE g:\TIE"  where g is the network 
  41. Echo *** drive letter where TIE's data files are installed.
  42. goto End
  43.  
  44. REM ************************************
  45. REM FLOPPY DISK INSTALLATION
  46. REM ************************************
  47. :FLOP
  48. REM TIE must be Installed on a Hard Disk.
  49. REM
  50. REM *****************************
  51. REM Help For TIE INSTALLATION
  52. REM *****************************
  53. :Help
  54. Cls
  55. Echo +----------------------------------------------------------------+
  56. Echo !           Teamwork Information Exchange (TIE) 2.2              !
  57. Echo !                                                                !
  58. Echo !                    Installation Help                           !
  59. Echo !                                                                !
  60. Echo !         TIE must be installed on a HARD DISK drive             !
  61. Echo !                                                                !
  62. Echo ! The INST_WS program decompresses TIE program, and copies it    !
  63. Echo ! to subdirectory \TIE on the designated drive.  If \TIE does    !
  64. Echo ! not exist on the designated hard disk, it will be created      !
  65. Echo ! for you. INST_WS is for installation on workstations only and  !
  66. Echo ! does not install data files that must be present on your net-  !
  67. Echo ! work server.                                                   !
  68. Echo !                                                                !
  69. Echo ! Syntax for the command is:  INST_WS d                          !
  70. Echo !        where "d" is the hard disk drive letter where you want  !
  71. Echo !        the program installed.                                  !
  72. Echo !                                                                !
  73. Echo ! Examples:  INST_WS C   (Note no colon is typed)                !
  74. Echo !            INST_WS D                                           !
  75. Echo !            etc.                                                !
  76. Echo +----------------------------------------------------------------+
  77. Echo *************    Program not installed.     **********************
  78. goto bad_end
  79. REM ************************
  80. REM End Of TIE Installation
  81. REM ************************
  82. :end
  83. Echo =-=-=-=-=-=-=-=-=-=- INSTALLATION COMPLETE -=-=-=-=-=-=-=-=-=-=-=-=
  84. :bad_end
  85.